home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / Apps / SoundApps / Patchmix / Source / Statement.m < prev    next >
Encoding:
Text File  |  1995-06-12  |  216 b   |  21 lines

  1.  
  2. /* Generated by Interface Builder */
  3.  
  4. #import "Statement.h"
  5. #import <string.h>
  6.  
  7. @implementation Statement
  8.  
  9. - storeString:(char *)string
  10. {
  11.     strcpy(s,string);
  12.     return self;
  13. }
  14.  
  15. - (char *)getString
  16. {
  17.     return s;
  18. }
  19.  
  20. @end
  21.